

public interface Collection {

	int size( );
    
    boolean isEmpty( );
    
    boolean contains( Object x );
    
    boolean add( Object x );
    
    boolean remove( Object x );
    
    void clear( );
    
    Iterator iterator( );
    
    Object [ ] toArray( );
}
